home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Franz PD / Franz PD Disk #279 (1993)(Rhein-Sieg-Soft).zip / Franz PD Disk #279 (1993)(Rhein-Sieg-Soft).adf / SuperView_V1.01.LHA / SuperView / Install_SuperView.script next >
Text File  |  1993-10-09  |  629b  |  30 lines

  1. ; Install_SuperView.script V1.01 (3.10.1993)
  2. ; © 1993 by Andreas R. Kleinert.
  3. ; This is the Installer Script for SuperView V1.01
  4.  
  5. (copylib
  6.   (prompt "Installing superview.library to LIBS: ...")
  7.   (help @copylib-help)
  8.   (source ":SuperView/libs/superview.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copyfiles
  14.   (prompt "Installing SuperView now.")
  15.   (help @copyfiles-help)
  16.   (source ":SuperView")
  17.   (set svcomdir
  18.           (askdir
  19.              (prompt "Select path to install SuperView to")
  20.              (help @askdir-help)
  21.              (newpath)
  22.              (default "SYS:SuperView")
  23.           )
  24.   )
  25.   (dest svcomdir)
  26.   (pattern "#?")
  27.   (infos)
  28.   (confirm)
  29. )
  30.